home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 January: Mac OS SDK / Dev.CD Jan 96 SDK / Dev.CD Jan 96 SDK1.toast / Development Kits (Disc 1) / MacODBC / ODBC Tools / SampleDriver / SAMPLE.H < prev    next >
Encoding:
C/C++ Source or Header  |  1995-03-16  |  426 b   |  24 lines  |  [TEXT/MPS ]

  1. #include <sql.h>
  2. #include <sqlext.h>
  3.  
  4.     //  Environment information.  This is allocated by "SQLAllocEnv".
  5.  
  6. typedef    struct ENV
  7. {
  8.     short   DummyEntry;
  9. }    ENV, *LPENV;
  10.  
  11.     //    Database connection information.  This is allocated by "SQLAllocConnect".
  12.  
  13. typedef struct DBC
  14. {
  15.     short   DummyEntry;
  16. }    DBC, *LPDBC;
  17.  
  18.     //    Statment information.  This is allocated by "SQLAllocStmt".
  19.  
  20. typedef struct STMT
  21. {
  22.     short   DummyEntry;
  23. }    STMT, *LPSTMT;
  24.